home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 2 / Gold Medal Software Volume 2 (Gold Medal) (1994).iso / bbsutils / tb502man.arj / P115 < prev    next >
Text File  |  1994-02-13  |  2KB  |  63 lines

  1.  
  2.  
  3.  
  4.  
  5.      The TriBBS Bulletin Board System                                   115
  6.  
  7.                    RUNNING TRIBBS WITH A FRONTEND OR AS A DOOR
  8.                    -------------------------------------------
  9.  
  10.      TriBBS can be run with either a frontend program (i.e., FrontDoor,
  11.      BinkleyTerm, etc.) or as a door.  To execute TriBBS when there is
  12.      already a connection, you must specify the connection's baud rate with
  13.      TriBBS's "/F" command line switch.  The format for using this switch
  14.      is "/Fbaud rate".  Where "baud rate" is the connection's baud rate. 
  15.      For example, TriBBS could be executed with a 2400 baud connection with
  16.      the following command line:
  17.  
  18.      BBS /F2400
  19.  
  20.      The above is only an example and you should use BOARD.BAT to run
  21.      TriBBS as you normally would.  Otherwise, doors will not function
  22.      properly.  To do this, modify your BOARD.BAT file as follows:
  23.  
  24.      ---------------------------------------------------------------------
  25.  
  26.      echo off
  27.      cd \tribbs
  28.      if exist door.bat del door.bat
  29.      if exist event.bat del event.bat
  30.      if exist endbbs del endbbs
  31.      bbs %1
  32.      if exist door.bat door
  33.      if exist event.bat event
  34.      if exist endbbs goto end
  35.      board
  36.      :end
  37.  
  38.      ---------------------------------------------------------------------
  39.  
  40.      Note the "%1" after "bbs" in the above batch file.  This will use
  41.      BOARD.BAT's first command line parameter to pass the "/F" switch to
  42.      TriBBS.  For example, you could execute TriBBS using the above
  43.      BOARD.BAT file with a 2400 baud connection by using the following DOS
  44.      command:
  45.  
  46.      BOARD /F2400
  47.  
  48.      Normally, TriBBS will recycle to the Waiting for Caller screen when
  49.      the caller either logs off or is forced off the board.  If TriBBS is
  50.      started with a "/F" parameter, TriBBS will exit memory and return
  51.      control to the calling program.  Thus, TriBBS acts just like a door
  52.      when a "/F" parameter is used.
  53.  
  54.      IMPORTANT: Although doors run fine when using TriBBS in this manner,
  55.      events are always executed by TriBBS's Waiting for Caller screen
  56.      routine.  Therefore, events will never run if TriBBS is being run with
  57.      the "/F" parameter.  If your board requires maintenance events and you
  58.      are using TriBBS with a frontend program, simply run them as a
  59.  
  60.  
  61.  
  62.  
  63.